home *** CD-ROM | disk | FTP | other *** search
/ ftp.ncftp.com / ftp.ncftp.com.zip / ftp.ncftp.com / ncftp / binaries / ncftp-3.2.5-macosx10.4-ppc.dmg / NcFTP 3.2.5.pkg / Contents / Resources / VolumeCheck < prev    next >
Text File  |  2002-10-13  |  171b  |  11 lines

  1. #!/bin/sh
  2.  
  3. if [ $# -eq 0 ] ; then exit 2 ; fi
  4.  
  5. TARGET_VOLUME="$1"
  6.  
  7. if [ -d "$TARGET_VOLUME/System/Library/CoreServices" ] ; then
  8.     exit 0
  9. fi
  10. exit 48        # Special exit status
  11.